Skip to main content

LiveCode Script item list handling

Type

module

Summary

Utility functions for LiveCode Script-compatible item lists.

Many LiveCode Builder widget and library extensions expose APIs to LiveCode Script that use item lists. This library provides a set of functions for converting List values to-and-from comma-delimited item strings.

Description

Utility functions for LiveCode Script-compatible item lists.

Many LiveCode Builder widget and library extensions expose APIs to LiveCode Script that use item lists. This library provides a set of functions for converting List values to-and-from comma-delimited item strings.

Children Properties

Handler

NameSummarySyntax
formatBooleanListAsItemsFormat a list of booleans as a comma-delimited "item" stringformatBooleanListAsItems(<pList>)
parseItemsAsNumberListParse a comma-delimited "item" string as a list of numbersparseItemsAsNumberList(<pStringValue>,<pListLength>,<pDefaultValue>)
parseItemsAsBooleanListParse a comma-delimited "item" string as a list of booleansparseItemsAsBooleanList(<pStringValue>,<pListLength>,<pDefaultValue>)
parseItemsAsStringListParse a comma-delimited "item" string as a list of stringsparseItemsAsStringList(<pStringValue>,<pListLength>,<pDefaultValue>)
formatStringListAsItemsFormat a list of strings as a comma-delimited "item" stringformatStringListAsItems(<pList>)
formatNumberListAsItemsFormat a list of numbers as a comma-delimited "item" stringformatNumberListAsItems(<pList>)